method
sqlite.Database.[Symbol.dispose]
Closes the database at the end of a using block (explicit resource management)
using db = new Database("myapp.db");
doSomethingWithDatabase(db);
// Automatically closed when `db` goes out of scope